github.com/google/go-cmp/cmp.pathStep.vx (field)

17 uses

	github.com/google/go-cmp/cmp (current package)
		compare.go#L334: 	if step.vx, step.vy = got, want; !s.statelessCompare(step).Equal() {
		compare.go#L337: 		if step.vx, step.vy = want, want; !s.statelessCompare(step).Equal() {
		compare.go#L381: 		step.vx = vx.Field(i)
		compare.go#L440: 			step.vx, step.xkey = vx.Index(ix), ix
		compare.go#L442: 			step.vx, step.xkey = reflect.Value{}, -1
		compare.go#L525: 		step.vx = vx.MapIndex(k)
		compare.go#L528: 		if !step.vx.IsValid() && !step.vy.IsValid() {
		options.go#L324: 	step.vx, step.vy = vvx, vvy
		path.go#L155: 	vx, vy reflect.Value
		path.go#L159: func (ps pathStep) Values() (vx, vy reflect.Value) { return ps.vx, ps.vy }
		path.go#L190: 		return sf.vx, sf.vy // CanInterface reports true
		path.go#L199: 	return sf.vx, sf.vy // CanInterface reports false
		path.go#L219: func (si SliceIndex) Values() (vx, vy reflect.Value) { return si.vx, si.vy }
		path.go#L263: func (mi MapIndex) Values() (vx, vy reflect.Value) { return mi.vx, mi.vy }
		path.go#L276: func (in Indirect) Values() (vx, vy reflect.Value) { return in.vx, in.vy }
		path.go#L286: func (ta TypeAssertion) Values() (vx, vy reflect.Value) { return ta.vx, ta.vy }
		path.go#L297: func (tf Transform) Values() (vx, vy reflect.Value) { return tf.vx, tf.vy }